home *** CD-ROM | disk | FTP | other *** search
- Path: news.bellglobal.com!stupy
- From: stupy@freenet.durham.org (Steve Tupy)
- Newsgroups: comp.lang.c
- Subject: Re: Using own stacks with borlandc
- Date: 29 Jan 1996 14:48:23 GMT
- Organization: Durham Free-Net
- Message-ID: <4eimnn$330@news.bellglobal.com>
- References: <4ef339$24q@thor.atcon.com>
- NNTP-Posting-Host: 204.101.165.17
- X-Newsreader: TIN [version 1.2 PL2]
-
- Konrad Byers (aa176@ccn.cs.dal.ca) wrote:
- : Are there any special compiler options I should be using to set up my
- : own stack in Borlandc. How about assume ds=ss? What should this one
- : be? I'm using a huge memory model.
-
- In Borland you use an external called _stklen.... eg.
-
- unsigned external stklen = <value>;
-
- ...where value is anything up to 64K. It defaults to 4096 unless you
- alter it. This declaration could be right above your main block.
-
- Take care!
-
- --
- Steve
-